home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_1829.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  372 b   |  1 lines

  1. libg++ (the library used by g++) was probably compiled with debug info (-g). On some machines, recompiling libg++ without debugging can save lots of disk space (~1 Meg; the down-side: you'll be unable to trace into libg++ calls). Merely 'strip'ping the executable doesn't reclaim as much as recompiling without -g followed by subsequent 'strip'ping the resultant 'a.out's.